home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / libraries / romboot_base.h < prev    next >
C/C++ Source or Header  |  1988-07-15  |  638b  |  36 lines

  1. #ifndef    LIBRARIES_ROMBOOT_BASE_H
  2. #define    LIBRARIES_ROMBOOT_BASE_H
  3. #ifndef    EXEC_TYPES_H
  4. #include    <exec/types.h>
  5. #endif
  6. #ifndef    EXEC_NODES_H
  7. #include    <exec/nodes.h>
  8. #endif
  9. #ifndef    EXEC_LISTS_H
  10. #include    <exec/lists.h>
  11. #endif
  12. #ifndef    EXEC_LIBRARIES_H
  13. #include    <exec/libraries.h>
  14. #endif
  15. #ifndef    EXEC_EXECBASE_H
  16. #include    <exec/execbase.h>
  17. #endif
  18. #ifndef    EXEC_EXECNAME_H
  19. #include    <exec/execname.h>
  20. #endif
  21. struct    RomBootBase
  22. {
  23. struct    Library    LibNode;
  24. struct    ExecBase    *ExecBase;
  25. struct    List    BootList;
  26. ULONG    Reserved[4];
  27. };
  28. struct    BootNode
  29. {
  30. struct    Node    bn_Node;
  31. UWORD    bn_Flags;
  32. CPTR    bn_DeviceNode;
  33. };
  34. #define    ROMBOOT_NAME    "romboot.library"
  35. #endif
  36.